home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sgdynamo_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  69 lines

  1. #
  2. # This script written by Scott Shebby (12/2003) 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. # changes by rd:
  8. #
  9. # - Description
  10. # - Support for multiple HTTP directories
  11. # - HTTP Keepalive support
  12.  
  13.  
  14. if(description)
  15. {
  16.  script_id(11955);
  17.  script_bugtraq_id(4720);
  18.  script_cve_id("CAN-2002-0375");
  19.  script_version ("$Revision: 1.5 $");
  20.  name["english"] = "sgdynamo_xss";
  21.  script_name(english:name["english"]);
  22.  desc["english"] = "
  23. The remote host is running the CGI 'sgdynamo.exe'. 
  24.  
  25. There is a bug in some versions of this CGI which makes it vulnerable to
  26. a cross site scripting attack.
  27.  
  28. Solution : None at this time
  29. Risk factor : Medium";
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "sgdynamo.exe XSS Vulnerability";
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 Scott Shebby");
  39.  family["english"] = "CGI abuses : XSS";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55. if(!get_port_state(port))exit(0);
  56.  
  57. foreach dir (cgi_dirs())
  58. {
  59.  url = dir + "/sgdynamo.exe?HTNAME=<script>foo</script>";
  60.  req = http_get(item:url, port:port);
  61.  resp = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  62.  if ( resp == NULL ) exit(0);
  63.  if ( "<script>foo</script>" >< res )
  64.  {
  65.    security_warning(port);
  66.    exit(0);
  67.  }
  68. }
  69.